summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2020-12-19 22:37:47 +1000
committerJohn Bampton <[email protected]>2020-12-19 22:37:47 +1000
commitbc90635e8306a74d1d7f16b940b8f9e1af2f68f4 (patch)
tree8290b81dd8c903f0f9d3936f8235b5eb14cf30e9
parent8f06789cb311f31c1ab3fca534a4ab660391db75 (diff)
downloadmruby-bc90635e8306a74d1d7f16b940b8f9e1af2f68f4.tar.gz
mruby-bc90635e8306a74d1d7f16b940b8f9e1af2f68f4.zip
refactor: remove trailing whitespace
-rw-r--r--Doxyfile6
-rw-r--r--doc/guides/debugger.md6
2 files changed, 6 insertions, 6 deletions
diff --git a/Doxyfile b/Doxyfile
index 2550aac22..626368e5a 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -27,12 +27,12 @@ INPUT = README.md \
# Red for Ruby
HTML_COLORSTYLE_HUE = 359
-# The following expansions
+# The following expansions
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
EXPAND_ONLY_PREDEF = NO
-PREDEFINED =
-EXPAND_AS_DEFINED =
+PREDEFINED =
+EXPAND_AS_DEFINED =
SKIP_FUNCTION_MACROS = NO
# This tells doxygen to search the places that make sense
diff --git a/doc/guides/debugger.md b/doc/guides/debugger.md
index 9d0c005c4..5c49e2af2 100644
--- a/doc/guides/debugger.md
+++ b/doc/guides/debugger.md
@@ -264,7 +264,7 @@ Example:
```
(sample.rb:1) info breakpoints
-Num Type Enb What
+Num Type Enb What
1 breakpoint y at sample.rb:3 -> file name,line number
2 breakpoint n in Sample_class:sample_class_method -> [class:]method name
3 breakpoint y in sample_global_method
@@ -274,8 +274,8 @@ Displaying the specified breakpoint number:
```
(foo.rb:1) info breakpoints 1 3
-Num Type Enb What
-1 breakpoint y at sample.rb:3
+Num Type Enb What
+1 breakpoint y at sample.rb:3
3 breakpoint y in sample_global_method
```