diff --git a/pkgs/gui-pkgs/gui-doc/scribblings/gui/area-container-intf.scrbl b/pkgs/gui-pkgs/gui-doc/scribblings/gui/area-container-intf.scrbl index 1091c44a33..33608c626a 100644 --- a/pkgs/gui-pkgs/gui-doc/scribblings/gui/area-container-intf.scrbl +++ b/pkgs/gui-pkgs/gui-doc/scribblings/gui/area-container-intf.scrbl @@ -56,7 +56,7 @@ Suspends geometry management in the container's top-level window delays show and hide actions by @method[area-container<%> change-children], as well as the on-screen part of showing via @method[window<%> show] until the sequence is complete. Sequence begin and end commands may - be nested arbitrarily deep. + be nested arbitrarily deeply. } diff --git a/pkgs/gui-pkgs/gui-doc/scribblings/gui/editor-intf.scrbl b/pkgs/gui-pkgs/gui-doc/scribblings/gui/editor-intf.scrbl index 9779ba75b0..f85728676a 100644 --- a/pkgs/gui-pkgs/gui-doc/scribblings/gui/editor-intf.scrbl +++ b/pkgs/gui-pkgs/gui-doc/scribblings/gui/editor-intf.scrbl @@ -194,7 +194,7 @@ Auto-wrapping is initially disabled. The @method[editor<%> begin-edit-sequence] and @method[editor<%> end-edit-sequence] methods are used to bracket a set of editor modifications so that the results are all displayed at once. The - commands may be nested arbitrarily deep. Using these functions can + commands may be nested arbitrarily deeply. Using these functions can greatly speed up displaying the changes. When an editor contains other editors, using @method[editor<%> diff --git a/pkgs/gui-pkgs/gui-lib/framework/gui-utils.rkt b/pkgs/gui-pkgs/gui-lib/framework/gui-utils.rkt index 0a7510e3b8..21df98f7d5 100644 --- a/pkgs/gui-pkgs/gui-lib/framework/gui-utils.rkt +++ b/pkgs/gui-pkgs/gui-lib/framework/gui-utils.rkt @@ -420,7 +420,7 @@ (-> void?)) (delay-time open close) @{Use this function to delay an action for some period of time. It also - supports cancelling the action before the time period elapses. For + supports canceling the action before the time period elapses. For example, if you want to display a watch cursor, but you only want it to appear after 2 seconds and the action may or may not take more than two seconds, use this pattern: diff --git a/pkgs/racket-pkgs/racket-doc/scribblings/guide/syntax-taints.scrbl b/pkgs/racket-pkgs/racket-doc/scribblings/guide/syntax-taints.scrbl index 21db0174d0..af6407f3e2 100644 --- a/pkgs/racket-pkgs/racket-doc/scribblings/guide/syntax-taints.scrbl +++ b/pkgs/racket-pkgs/racket-doc/scribblings/guide/syntax-taints.scrbl @@ -175,7 +175,7 @@ syntax object's parts are armed. If the property value is the sub-parts of the second part (as for @racket[define-values] and @racket[define-syntaxes]) are armed. The @racket['transparent] and @racket['transparent-binding] modes trigger recursive property -checking at the parts, so that armings can be pushed arbitrarily deep +checking at the parts, so that armings can be pushed arbitrarily deeply into a transformer's result. @;------------------------------------------------------------------------