@@ -567,10 +567,8 @@ The `<...>` notation means the argument.
567567 * break and run ` <command> ` before stopping.
568568* ` b[reak] ... do: <command> `
569569 * break and run ` <command> ` , and continue.
570- * ` b[reak] ... path: </path_regexp/> `
571- * break if the triggering event's path matches </path_regexp/>.
572- * ` b[reak] ... path: <path_string> `
573- * break if the triggering event's path matches <path_string>.
570+ * ` b[reak] ... path: <path> `
571+ * break if the path matches to ` <path> ` . ` <path> ` can be a regexp with ` /regexp/ ` .
574572* ` b[reak] if: <expr> `
575573 * break if: ` <expr> ` is true at any lines.
576574 * Note that this feature is super slow.
@@ -582,10 +580,8 @@ The `<...>` notation means the argument.
582580 * runs ` <command> ` before stopping.
583581* ` catch ... do: <command> `
584582 * stops and run ` <command> ` , and continue.
585- * ` catch ... path: </path_regexp/> `
586- * stops if the exception is raised from a path that matches </path_regexp/>.
587- * ` catch ... path: <path_string> `
588- * stops if the exception is raised from a path that matches <path_string>.
583+ * ` catch ... path: <path> `
584+ * stops if the exception is raised from a ` <path> ` . ` <path> ` can be a regexp with ` /regexp/ ` .
589585* ` watch @ivar `
590586 * Stop the execution when the result of current scope's ` @ivar ` is changed.
591587 * Note that this feature is super slow.
@@ -595,10 +591,8 @@ The `<...>` notation means the argument.
595591 * runs ` <command> ` before stopping.
596592* ` watch ... do: <command> `
597593 * stops and run ` <command> ` , and continue.
598- * ` watch ... path: </path_regexp/> `
599- * stops if the triggering event's path matches </path_regexp/>.
600- * ` watch ... path: <path_string> `
601- * stops if the triggering event's path matches <path_string>.
594+ * ` watch ... path: <path> `
595+ * stops if the path matches ` <path> ` . ` <path> ` can be a regexp with ` /regexp/ ` .
602596* ` del[ete] `
603597 * delete all breakpoints.
604598* ` del[ete] <bpnum> `
@@ -637,8 +631,8 @@ The `<...>` notation means the argument.
637631 * Show information about accessible constants except toplevel constants.
638632* ` i[nfo] g[lobal[s]] `
639633 * Show information about global variables
640- * ` i[nfo] ... </pattern/> `
641- * Filter the output with ` </pattern/> ` .
634+ * ` i[nfo] ... /regexp/ `
635+ * Filter the output with ` /regexp/ ` .
642636* ` i[nfo] th[read[s]] `
643637 * Show all threads (same as ` th[read] ` ).
644638* ` o[utline] ` or ` ls `
@@ -689,8 +683,8 @@ The `<...>` notation means the argument.
689683 * Add an exception tracer. It indicates raising exceptions.
690684* ` trace object <expr> `
691685 * Add an object tracer. It indicates that an object by ` <expr> ` is passed as a parameter or a receiver on method call.
692- * ` trace ... </pattern/> `
693- * Indicates only matched events to ` </pattern/> ` (RegExp) .
686+ * ` trace ... /regexp/ `
687+ * Indicates only matched events to ` /regexp/ ` .
694688* ` trace ... into: <file> `
695689 * Save trace information into: ` <file> ` .
696690* ` trace off <num> `
0 commit comments