diff options
author | Thomas White <taw@physics.org> | 2012-10-02 17:50:55 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-10-02 17:50:55 +0200 |
commit | 62289d35d10728751a6bc7e3ad5edc064122899c (patch) | |
tree | 019961be7fae9b67a08658221585ac96e8dda66c /libcrystfel/src/mosflm.c | |
parent | f4cb5910fe6981e2ae5a85ac22fd3d64eecf1117 (diff) |
Fix comments
Diffstat (limited to 'libcrystfel/src/mosflm.c')
-rw-r--r-- | libcrystfel/src/mosflm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/mosflm.c b/libcrystfel/src/mosflm.c index 519056c2..df3141ab 100644 --- a/libcrystfel/src/mosflm.c +++ b/libcrystfel/src/mosflm.c @@ -304,7 +304,7 @@ static const char *spacegroup_for_lattice(UnitCell *cell) break; case L_TETRAGONAL : - /* "4 1 1", "1 4 1" or "1 1 4" depending on unique axis */ + /* "411", "141" or "114" depending on unique axis */ if ( ua == 'a' ) g = "411"; if ( ua == 'b' ) g = "141"; if ( ua == 'c' ) g = "114"; @@ -315,7 +315,7 @@ static const char *spacegroup_for_lattice(UnitCell *cell) break; case L_HEXAGONAL : - /* "6 1 1", "1 6 1" or "1 1 6" depending on unique axis */ + /* "611", "161" or "116" depending on unique axis */ if ( ua == 'a' ) g = "611"; if ( ua == 'b' ) g = "161"; if ( ua == 'c' ) g = "611"; |