Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Sep 9, 2020
1 parent 92fb29c commit 5311cdf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ inline int is_contained_in_one(uint64_t *face, uint64_t **faces, size_t n_faces,

inline int contains_one(uint64_t *face, uint64_t **faces, size_t n_faces, size_t face_length){
/*
Return whether ``face`` contains in one of ``faces``.
Return whether ``face`` contains one of ``faces``.
*/
for(size_t i = 0; i < n_faces; i++){
if (is_subset(faces[i], face, face_length))
Expand All @@ -101,7 +101,7 @@ inline int contains_one(uint64_t *face, uint64_t **faces, size_t n_faces, size_t

inline int contains_one(uint64_t *face, uint64_t **faces, size_t n_faces, size_t face_length, size_t skip){
/*
Return whether ``face`` is contains in one of ``faces``.
Return whether ``face`` contains one of ``faces``.
Skips ``faces[skip]``.
*/
Expand Down

0 comments on commit 5311cdf

Please sign in to comment.