From 6f2909405edbd39478891f71dc2bfcbcda8530fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hyogeun=20Oh=20=28=EC=98=A4=ED=9A=A8=EA=B7=BC=29?= Date: Thu, 29 May 2025 23:38:55 +0900 Subject: [PATCH] [Doc] Fix codeblocks formatting in LoRA adapters documentation (#18907) Signed-off-by: Zerohertz --- docs/features/lora.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/features/lora.md b/docs/features/lora.md index 642462f7c4557..04e92dbc45924 100644 --- a/docs/features/lora.md +++ b/docs/features/lora.md @@ -165,6 +165,7 @@ it will first look in the local directory for a directory `foobar`, and attempt that adapter will then be available for normal use on the server. Alternatively, follow these example steps to implement your own plugin: + 1. Implement the LoRAResolver interface. Example of a simple S3 LoRAResolver implementation: @@ -198,9 +199,9 @@ Alternatively, follow these example steps to implement your own plugin: return lora_request ``` -2. Register LoRAResolver plugin. +2. Register `LoRAResolver` plugin. - ```python + ```python from vllm.lora.resolver import LoRAResolverRegistry s3_resolver = S3LoRAResolver()