Skip to content

Commit

Permalink
docs: Fixes Lua Module & Function description
Browse files Browse the repository at this point in the history
  • Loading branch information
Panakotta00 committed Sep 6, 2024
1 parent f2419cc commit 18548af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/FicsItNetworksLua/Private/FINLua/FINLuaModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void FFINLuaTable::AddBareFieldByDocumentationComment(TFunction<void(lua_State*
}
}

field.Description = FText::FromString(TEXT("Description"));
field.Description = FText::FromString(block);
}

void FFINLuaTable::AddTableFieldByDocumentationComment(TSharedRef<FFINLuaTable> Table, const FString& Comment, const TCHAR* _InternalName) {
Expand Down Expand Up @@ -284,7 +284,7 @@ void FFINLuaModule::ParseDocumentationComment(const FString& Comment, const TCHA
}
}

Description = FText::FromString(TEXT("Description"));
Description = FText::FromString(block);
}

void FFINLuaModule::AddLibraryByDocumentationComment(const TSharedRef<FFINLuaTable>& Table, const FString& Comment, const TCHAR* _InternalName) {
Expand Down

0 comments on commit 18548af

Please sign in to comment.