diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-11-16 14:37:31 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-11-16 14:37:31 -0400 |
commit | e316eac6c816111c11280aab79e9a058f86d902b (patch) | |
tree | eea4b7657458ab2957f67cb03bbc25585fa27b3a /Logs | |
parent | 8055c761751e5c6a913f76293281389e29378545 (diff) |
fix use of hifalutin terminology
Diffstat (limited to 'Logs')
-rw-r--r-- | Logs/Remote.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Logs/Remote.hs b/Logs/Remote.hs index 91afa242b..a90eb027c 100644 --- a/Logs/Remote.hs +++ b/Logs/Remote.hs @@ -14,7 +14,7 @@ module Logs.Remote ( showConfig, parseConfig, - prop_idempotent_configEscape, + prop_isomorphic_configEscape, prop_parse_show_Config, ) where @@ -84,8 +84,8 @@ configUnEscape = unescape rest = drop 1 r {- for quickcheck -} -prop_idempotent_configEscape :: String -> Bool -prop_idempotent_configEscape s = s == (configUnEscape . configEscape) s +prop_isomorphic_configEscape :: String -> Bool +prop_isomorphic_configEscape s = s == (configUnEscape . configEscape) s prop_parse_show_Config :: RemoteConfig -> Bool prop_parse_show_Config c |