Skip to content

Commit

Permalink
z3-sys: Add some missing backticks to some comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Oct 2, 2024
1 parent cb32b95 commit b087c88
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions z3-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3778,7 +3778,7 @@ extern "C" {

/// Pseudo-Boolean relations.
///
/// Encode p1 + p2 + ... + pn <= k
/// Encode `p1 + p2 + ... + pn <= k`
pub fn Z3_mk_atmost(
c: Z3_context,
num_args: ::std::os::raw::c_uint,
Expand All @@ -3788,7 +3788,7 @@ extern "C" {

/// Pseudo-Boolean relations.
///
/// Encode p1 + p2 + ... + pn >= k
/// Encode `p1 + p2 + ... + pn >= k`
pub fn Z3_mk_atleast(
c: Z3_context,
num_args: ::std::os::raw::c_uint,
Expand All @@ -3798,7 +3798,7 @@ extern "C" {

/// Pseudo-Boolean relations.
///
/// Encode k1*p1 + k2*p2 + ... + kn*pn <= k
/// Encode `k1*p1 + k2*p2 + ... + kn*pn <= k`
pub fn Z3_mk_pble(
c: Z3_context,
num_args: ::std::os::raw::c_uint,
Expand All @@ -3809,7 +3809,7 @@ extern "C" {

/// Pseudo-Boolean relations.
///
/// Encode k1*p1 + k2*p2 + ... + kn*pn >= k
/// Encode `k1*p1 + k2*p2 + ... + kn*pn >= k`
pub fn Z3_mk_pbge(
c: Z3_context,
num_args: ::std::os::raw::c_uint,
Expand All @@ -3820,7 +3820,7 @@ extern "C" {

/// Pseudo-Boolean relations.
///
/// Encode k1*p1 + k2*p2 + ... + kn*pn = k
/// Encode `k1*p1 + k2*p2 + ... + kn*pn = k`
pub fn Z3_mk_pbeq(
c: Z3_context,
num_args: ::std::os::raw::c_uint,
Expand Down

0 comments on commit b087c88

Please sign in to comment.