diff options
author | Guillaume Poirier-Morency <guillaumepoiriermorency@gmail.com> | 2017-06-26 19:52:04 -0400 |
---|---|---|
committer | Guillaume Poirier-Morency <guillaumepoiriermorency@gmail.com> | 2017-06-26 20:03:52 -0400 |
commit | bbddf51a5425799564e7c8ede4456feb59537357 (patch) | |
tree | 1a743f9d61a384397d5a046d69762466a4663f96 /mesonbuild/compilers/cs.py | |
parent | 5b58ff2783dbd6b8cdc002385ec6daba717f4856 (diff) | |
download | meson-bbddf51a5425799564e7c8ede4456feb59537357.zip meson-bbddf51a5425799564e7c8ede4456feb59537357.tar.gz meson-bbddf51a5425799564e7c8ede4456feb59537357.tar.bz2 |
Use 'C sharp' instead of 'C#'
The '#' is reserved for Ninja comments and cannot be escaped.
Diffstat (limited to 'mesonbuild/compilers/cs.py')
-rw-r--r-- | mesonbuild/compilers/cs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cs.py b/mesonbuild/compilers/cs.py index 4f6fec1..e6c5b9e 100644 --- a/mesonbuild/compilers/cs.py +++ b/mesonbuild/compilers/cs.py @@ -26,7 +26,7 @@ class MonoCompiler(Compiler): self.monorunner = 'mono' def get_display_language(self): - return 'C#' + return 'C sharp' def get_output_args(self, fname): return ['-out:' + fname] |