Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rex4539 authored Feb 27, 2018
1 parent be262f0 commit fcc0828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snark/libsnark/algebra/fields/bigint.tcc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
namespace libsnark {

template<mp_size_t n>
bigint<n>::bigint(const unsigned long x) /// Initalize from a small integer
bigint<n>::bigint(const unsigned long x) /// Initialize from a small integer
{
static_assert(ULONG_MAX <= GMP_NUMB_MAX, "unsigned long does not fit in a GMP limb");
this->data[0] = x;
Expand Down

0 comments on commit fcc0828

Please sign in to comment.