Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-Authored-By: Dominik Bernhardt <[email protected]>
  • Loading branch information
ChrisJefferson and DominikBernhardt authored Nov 25, 2019
1 parent 48a4bd9 commit 1669403
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions lib/oper.g
Original file line number Diff line number Diff line change
Expand Up @@ -630,8 +630,8 @@ end );
## Internal methods are functions such as <C>+</C> or <C>^</C>.
## <Ref Func="UntraceInternalMethods"/> turns tracing off.
## As these methods can be called hundreds of thousands of times in simple GAP
## code, there is a statement printed each time one is called. Instead, the
## method <Ref Func="GetTracedInternalMethodsCounts"/> returns how many time
## code, there isn't a statement printed each time one is called. Instead, the
## method <Ref Func="GetTracedInternalMethodsCounts"/> returns how many times
## each operation has been applied to each type of variable (the type of a
## variable can be found with the <C>TNUM_OBJ</C> method).
## <Log><![CDATA[
Expand Down Expand Up @@ -2132,4 +2132,3 @@ BIND_GLOBAL( "RECALCULATE_ALL_METHOD_RANKS", function()
Assert(2, CHECK_ALL_METHOD_RANKS());
end );


2 changes: 1 addition & 1 deletion src/tracing.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**
** SPDX-License-Identifier: GPL-2.0-or-later
**
** This file contains functionality for tracking operations
** This file contains functionality for tracing operations
**
*/

Expand Down
2 changes: 1 addition & 1 deletion src/tracing.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
**
** SPDX-License-Identifier: GPL-2.0-or-later
**
** This file defines the functions for computing with finite presentations.
** This file defines the functions for tracing operations.
*/

// This file contains functionality which is used for tracking GAP's
Expand Down

0 comments on commit 1669403

Please sign in to comment.