Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
06513c9b
Unverified
Commit
06513c9b
authored
Apr 08, 2026
by
Xianlu Bird
Committed by
GitHub
Apr 08, 2026
Browse files
chore: fix bindings typo in comments (#7516)
Signed-off-by:
xianlubird
<
xianlubird@gmail.com
>
parent
5802db87
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
lib/bindings/kvbm/src/block_manager.rs
lib/bindings/kvbm/src/block_manager.rs
+1
-1
lib/bindings/kvbm/src/block_manager/vllm.rs
lib/bindings/kvbm/src/block_manager/vllm.rs
+1
-1
lib/bindings/python/rust/engine.rs
lib/bindings/python/rust/engine.rs
+1
-1
No files found.
lib/bindings/kvbm/src/block_manager.rs
View file @
06513c9b
...
@@ -21,7 +21,7 @@ mod distributed;
...
@@ -21,7 +21,7 @@ mod distributed;
pub
mod
vllm
;
pub
mod
vllm
;
/// Add bin
g
ings from this crate to the provided module
/// Add bin
d
ings from this crate to the provided module
pub
fn
add_to_module
(
m
:
&
Bound
<
'_
,
PyModule
>
)
->
PyResult
<
()
>
{
pub
fn
add_to_module
(
m
:
&
Bound
<
'_
,
PyModule
>
)
->
PyResult
<
()
>
{
m
.add_class
::
<
BlockManager
>
()
?
;
m
.add_class
::
<
BlockManager
>
()
?
;
m
.add_class
::
<
distributed
::
KvbmWorker
>
()
?
;
m
.add_class
::
<
distributed
::
KvbmWorker
>
()
?
;
...
...
lib/bindings/kvbm/src/block_manager/vllm.rs
View file @
06513c9b
...
@@ -56,7 +56,7 @@ fn _vllm_integration(m: &Bound<'_, PyModule>) -> PyResult<()> {
...
@@ -56,7 +56,7 @@ fn _vllm_integration(m: &Bound<'_, PyModule>) -> PyResult<()> {
Ok
(())
Ok
(())
}
}
/// Add bin
g
ings from this crate to the provided module
/// Add bin
d
ings from this crate to the provided module
pub
fn
add_to_module
(
m
:
&
Bound
<
'_
,
PyModule
>
)
->
PyResult
<
()
>
{
pub
fn
add_to_module
(
m
:
&
Bound
<
'_
,
PyModule
>
)
->
PyResult
<
()
>
{
m
.add_wrapped
(
wrap_pymodule!
(
_
vllm_integration
))
?
;
m
.add_wrapped
(
wrap_pymodule!
(
_
vllm_integration
))
?
;
Ok
(())
Ok
(())
...
...
lib/bindings/python/rust/engine.rs
View file @
06513c9b
...
@@ -24,7 +24,7 @@ pub use dynamo_runtime::{
...
@@ -24,7 +24,7 @@ pub use dynamo_runtime::{
use
super
::
context
::{
Context
,
callable_accepts_kwarg
};
use
super
::
context
::{
Context
,
callable_accepts_kwarg
};
use
super
::
errors
::
py_exception_to_backend_error
;
use
super
::
errors
::
py_exception_to_backend_error
;
/// Add bin
g
ings from this crate to the provided module
/// Add bin
d
ings from this crate to the provided module
pub
fn
add_to_module
(
m
:
&
Bound
<
'_
,
PyModule
>
)
->
PyResult
<
()
>
{
pub
fn
add_to_module
(
m
:
&
Bound
<
'_
,
PyModule
>
)
->
PyResult
<
()
>
{
m
.add_class
::
<
PythonAsyncEngine
>
()
?
;
m
.add_class
::
<
PythonAsyncEngine
>
()
?
;
Ok
(())
Ok
(())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment