summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-hash-ext
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2021-02-13 16:23:00 +1000
committerJohn Bampton <[email protected]>2021-02-13 16:37:46 +1000
commitd55a74c4187837347f8edbdd034e28cfee1e9a15 (patch)
tree8633cea9ea49d12fc2c4595e27beadfa3e9610db /mrbgems/mruby-hash-ext
parent8e01fc89336811d4200a2017e229b1b2a1b23e8f (diff)
downloadmruby-d55a74c4187837347f8edbdd034e28cfee1e9a15.tar.gz
mruby-d55a74c4187837347f8edbdd034e28cfee1e9a15.zip
feat(CI): check for trailing whitespace
Run on pull request only. Use a shell script to check for trailing whitespace in all files. Fail if trailing whitespace is found.
Diffstat (limited to 'mrbgems/mruby-hash-ext')
-rw-r--r--mrbgems/mruby-hash-ext/src/hash-ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-hash-ext/src/hash-ext.c b/mrbgems/mruby-hash-ext/src/hash-ext.c
index 6345420ed..9c85858fe 100644
--- a/mrbgems/mruby-hash-ext/src/hash-ext.c
+++ b/mrbgems/mruby-hash-ext/src/hash-ext.c
@@ -74,7 +74,7 @@ hash_slice(mrb_state *mrb, mrb_value hash)
* hsh.except(*keys) -> a_hash
*
* Returns a hash excluding the given keys and their values.
- *
+ *
* h = { a: 100, b: 200, c: 300 }
* h.except(:a) #=> {:b=>200, :c=>300}
* h.except(:b, :c, :d) #=> {:a=>100}