From b520b9d617ee5f3905903405c23bb8d49ae7079f Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 7 Apr 2013 22:43:58 +0200 Subject: [PATCH] Fix wrong Python doc --- src/Gui/Selection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/Selection.cpp b/src/Gui/Selection.cpp index de389b215..ad67904fd 100644 --- a/src/Gui/Selection.cpp +++ b/src/Gui/Selection.cpp @@ -994,9 +994,9 @@ PyMethodDef SelectionSingleton::Methods[] = { "removeObserver(Object) -- Uninstall an observer\n"}, {"addSelectionGate", (PyCFunction) SelectionSingleton::sAddSelectionGate, 1, "addSelectionGate(String) -- activate the selection gate.\n" - "The selection gate will prohibit all selections which do not match the\n" + "The selection gate will prohibit all selections which do not match\n" "the given selection filter string. Examples strings are:\n" - "'SELECT Part::Feature SUB Edge',\n" + "'SELECT Part::Feature SUBELEMENT Edge',\n" "'SELECT Robot::RobotObject'\n"}, {"removeSelectionGate", (PyCFunction) SelectionSingleton::sRemoveSelectionGate, 1, "removeSelectionGate() -- remove the active slection gate\n"},